diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-12-21 11:42:44 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-12-21 11:42:44 -0300 |
commit | f7f197c40941ffaf03fcddeb20536dec8074ca00 (patch) | |
tree | 7a69483162bb873813f6152176b815d189af4edd /drivers/chibi | |
parent | 9783f6fc969947fdbf666950ab3da21ac462c57e (diff) |
-ability to set default textures in shader (needed for visual shader editing)
-work in progress new graph system (will replace current one)
-crash fix in s3m loader (out of bounds acess)
-fixed vbox overriding of separation (fixes empty line between section tabs)
Diffstat (limited to 'drivers/chibi')
-rw-r--r-- | drivers/chibi/cp_loader_s3m.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/chibi/cp_loader_s3m.cpp b/drivers/chibi/cp_loader_s3m.cpp index c5f0830ae6..8b9871463f 100644 --- a/drivers/chibi/cp_loader_s3m.cpp +++ b/drivers/chibi/cp_loader_s3m.cpp @@ -162,7 +162,7 @@ CPLoader::Error CPLoader_S3M::load_sample(CPSample *p_sample) { p_sample->set_default_volume(def_volume); p_sample->set_name(name); - char scrs[4]; + char scrs[5]; file->get_byte_array((uint8_t*)scrs,4); scrs[4]=0; |