Attempt to fix this minor variable error

This commit is contained in:
Colton G. Rushton 2021-02-12 22:52:57 -04:00 committed by GitHub
parent 17ddd26075
commit 057f2341db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -387,8 +387,10 @@ void render_multi_text_string(s16 *xPos, s16 *yPos, s8 multiTextID)
*/
void print_generic_string(s16 x, s16 y, const u8 *str) {
// get rid of this unused variable when both VERSION_EU and QOL_FIXES
#if !defined(VERSION_EU) && !defined(QOL_FIXES)
#ifdef QOL_FIXES
#ifndef VERSION_EU
UNUSED s8 mark = DIALOG_MARK_NONE; // unused in EU
#endif
#endif
s32 strPos = 0;
u8 lineNum = 1;