Skip to content

Commit

Permalink
Make temp string bigger
Browse files Browse the repository at this point in the history
  • Loading branch information
luboslenco committed Sep 22, 2024
1 parent d625fde commit c5ce101
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sources/iron.h
Original file line number Diff line number Diff line change
Expand Up @@ -185,12 +185,12 @@ int last_window_width = 0;
int last_window_height = 0;
#endif

char temp_string[1024 * 8];
char temp_string[1024 * 32];
char temp_string_vs[1024 * 128];
char temp_string_fs[1024 * 128];
char temp_string_vstruct[4][32][32];
#ifdef KINC_WINDOWS
wchar_t temp_wstring[1024 * 8];
wchar_t temp_wstring[1024 * 32];
bool show_window = false;
#endif

Expand Down

0 comments on commit c5ce101

Please sign in to comment.