@@ -3040,24 +3040,38 @@ void drawCheatsManageFlagsMain(uint32_t currentMenu)
3040
3040
3041
3041
if (ChangingWord)
3042
3042
{
3043
+ // Draw the text descriptions
3043
3044
sprintf (tempDisplayBuffer,
3044
- " %s To Set: %" PRIu32 " \n Current Value: %" PRId32 " \n New Value: %" PRId32,
3045
- FlagText,
3045
+ " %s To Set\n Current Value\n New Value" ,
3046
+ FlagText);
3047
+
3048
+ drawText (tempDisplayBuffer, PosX, PosY, Alpha, Color, Scale);
3049
+
3050
+ // Draw the values
3051
+ sprintf (tempDisplayBuffer,
3052
+ " %" PRIu32 " \n %" PRId32 " \n %" PRId32,
3046
3053
FlagToSet,
3047
3054
FlagValue,
3048
3055
ManageFlags.ValueToSet );
3049
3056
3050
- drawText (tempDisplayBuffer, PosX, PosY, Alpha, Color, Scale);
3057
+ drawText (tempDisplayBuffer, PosX + 150 , PosY, Alpha, Color, Scale);
3051
3058
}
3052
3059
else
3053
3060
{
3061
+ // Draw the text descriptions
3054
3062
sprintf (tempDisplayBuffer,
3055
- " %s To Set: %" PRIu32 " \n Current Value: %" PRId32,
3056
- FlagText,
3063
+ " %s To Set\n Current Value" ,
3064
+ FlagText);
3065
+
3066
+ drawText (tempDisplayBuffer, PosX, PosY, Alpha, Color, Scale);
3067
+
3068
+ // Draw the values
3069
+ sprintf (tempDisplayBuffer,
3070
+ " %" PRIu32 " \n %" PRId32,
3057
3071
FlagToSet,
3058
3072
FlagValue);
3059
3073
3060
- drawText (tempDisplayBuffer, PosX, PosY, Alpha, Color, Scale);
3074
+ drawText (tempDisplayBuffer, PosX + 150 , PosY, Alpha, Color, Scale);
3061
3075
}
3062
3076
}
3063
3077
0 commit comments