Increased the max width of the player name on the char screen (#305)

Updated version number.
This commit is contained in:
NovaRain
2020-06-04 06:40:57 +08:00
parent b345140fba
commit 6c31cc43a0
3 changed files with 10 additions and 6 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
;sfall configuration settings ;sfall configuration settings
;v3.8.25 ;v3.8.26
[Main] [Main]
;Change to 1 if you want to use command line args to tell sfall to use another ini file. ;Change to 1 if you want to use command line args to tell sfall to use another ini file.
+5 -1
View File
@@ -585,7 +585,11 @@ void MiscPatchesInit() {
const DWORD listDrvdStatsAddr[] = {0x43549C, 0x4354BE}; const DWORD listDrvdStatsAddr[] = {0x43549C, 0x4354BE};
HookCalls(ListDrvdStats_hook, listDrvdStatsAddr); HookCalls(ListDrvdStats_hook, listDrvdStatsAddr);
// Increase the max text width of the information card in the character screen // Increase the max text width of the player name on the character screen
const DWORD printBignameAddr[] = {0x435160, 0x435189}; // 100
SafeWriteBatch<BYTE>(127, printBignameAddr);
// Increase the max text width of the information card on the character screen
const DWORD drawCardAddr[] = {0x43ACD5, 0x43DD37}; // 136, 133 const DWORD drawCardAddr[] = {0x43ACD5, 0x43DD37}; // 136, 133
SafeWriteBatch<BYTE>(145, drawCardAddr); SafeWriteBatch<BYTE>(145, drawCardAddr);
+4 -4
View File
@@ -24,11 +24,11 @@
#define VERSION_MAJOR 3 #define VERSION_MAJOR 3
#define VERSION_MINOR 8 #define VERSION_MINOR 8
#define VERSION_BUILD 25 #define VERSION_BUILD 26
#define VERSION_REV 2 #define VERSION_REV 0
#ifdef WIN2K #ifdef WIN2K
#define VERSION_STRING "3.8.25.2 win2k" #define VERSION_STRING "3.8.26 win2k"
#else #else
#define VERSION_STRING "3.8.25.2" #define VERSION_STRING "3.8.26"
#endif #endif