mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 19:43:06 +01:00
Replace two missed -1 NULL pointers
This commit is contained in:
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user