diff --git a/.gitignore b/.gitignore index 1b6a3bc..20605e0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *.gmk *.gm81 +*.gb1 gittogmk gmktogit gmksplit.jar diff --git a/src/Game Information.txt b/src/Game Information.txt index 920a3cc..0f56b00 100644 Binary files a/src/Game Information.txt and b/src/Game Information.txt differ diff --git a/src/Scripts/Textbox/log_update.gml b/src/Scripts/Textbox/log_update.gml index 66d7e29..b0dcfd0 100644 --- a/src/Scripts/Textbox/log_update.gml +++ b/src/Scripts/Textbox/log_update.gml @@ -9,16 +9,18 @@ str=argument0; logw=argument1; loop=true; +// Escape number signs to prevent unwanted newlines +str=string_replace_all(str,"#","\#"); + while (loop){ if(string_width(str)>logw){ // The string is too long to be displayed on one line. - if(string_pos(" ",str)&&(string_width(string_copy(str,1,string_pos(" ",str)))