Replace two missed -1 NULL pointers

This commit is contained in:
Gymnasiast 2017-10-15 21:41:10 +02:00
parent ffdc854c1f
commit 07cdc79bd7
1 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ void scenario_begin()
}
else {
rct_stex_entry* stex = g_stexEntries[0];
if ((intptr_t)stex != -1) {
if (stex != NULL) {
char *buffer = gCommonStringFormatBuffer;
// Set localised park name
@ -651,7 +651,7 @@ bool scenario_prepare_for_save()
gS6Info.entry.flags = 255;
rct_stex_entry* stex = g_stexEntries[0];
if ((intptr_t)stex != -1) {
if (stex != NULL) {
char buffer[256];
format_string(buffer, 256, stex->scenario_name, NULL);
safe_strcpy(gS6Info.name, buffer, sizeof(gS6Info.name));