mirror of
https://github.com/sfall-team/sfall.git
synced 2026-07-27 16:52:34 -07:00
Increased the max width of the player name on the char screen (#305)
Updated version number.
This commit is contained in:
+1
-1
@@ -1,5 +1,5 @@
|
||||
;sfall configuration settings
|
||||
;v3.8.25
|
||||
;v3.8.26
|
||||
|
||||
[Main]
|
||||
;Change to 1 if you want to use command line args to tell sfall to use another ini file.
|
||||
|
||||
@@ -585,7 +585,11 @@ void MiscPatchesInit() {
|
||||
const DWORD listDrvdStatsAddr[] = {0x43549C, 0x4354BE};
|
||||
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
|
||||
SafeWriteBatch<BYTE>(145, drawCardAddr);
|
||||
|
||||
|
||||
+4
-4
@@ -24,11 +24,11 @@
|
||||
|
||||
#define VERSION_MAJOR 3
|
||||
#define VERSION_MINOR 8
|
||||
#define VERSION_BUILD 25
|
||||
#define VERSION_REV 2
|
||||
#define VERSION_BUILD 26
|
||||
#define VERSION_REV 0
|
||||
|
||||
#ifdef WIN2K
|
||||
#define VERSION_STRING "3.8.25.2 win2k"
|
||||
#define VERSION_STRING "3.8.26 win2k"
|
||||
#else
|
||||
#define VERSION_STRING "3.8.25.2"
|
||||
#define VERSION_STRING "3.8.26"
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user