1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-11 01:10:33 +00:00

include debug.h in translation.h

This commit is contained in:
Dragorn421 2025-06-03 13:02:54 +02:00
parent a695afd730
commit e4d4799e2e
No known key found for this signature in database
GPG key ID: 381AEBAF3D429335
9 changed files with 2 additions and 9 deletions

View file

@ -1,6 +1,8 @@
#ifndef TRANSLATION_H
#define TRANSLATION_H
#include "libu64/debug.h"
/**
* The "T" macro holds translations in English for original debug strings written in Japanese.
* The translated strings are only direct translations. Certain names or terms may not reflect
@ -13,7 +15,6 @@
*/
#define T(jp, en) jp
// Note: need to also include debug.h if using this macro
#define LOG_STRING_T(stringJP, stringEN, file, line) LOG(#stringJP, stringJP, "%s", file, line)
#endif