From 7cdc812b767c90258b523033caacd031bccb1b53 Mon Sep 17 00:00:00 2001 From: NepDisk Date: Thu, 2 Jan 2025 18:46:29 -0500 Subject: [PATCH] Go back to 2.1 frame order Makes compat with v1 content easier --- src/r_things.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/r_things.h b/src/r_things.h index 5bef6d2ed..0fa20666b 100644 --- a/src/r_things.h +++ b/src/r_things.h @@ -274,7 +274,7 @@ void R_InitDrawNodes(void); // Future: [[ ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz!@ ]] FUNCMATH FUNCINLINE static ATTRINLINE char R_Frame2Char(UINT8 frame) { -#if 0 // 2.1 compat +#if 1 // 2.1 compat return 'A' + frame; #else if (frame < 26) return 'A' + frame; @@ -288,7 +288,7 @@ FUNCMATH FUNCINLINE static ATTRINLINE char R_Frame2Char(UINT8 frame) FUNCMATH FUNCINLINE static ATTRINLINE UINT8 R_Char2Frame(char cn) { -#if 0 // 2.1 compat +#if 1 // 2.1 compat if (cn == '+') return '\\' - 'A'; // PK3 can't use backslash, so use + instead return cn - 'A'; #else