Skip to content

Commit 99673bf

Browse files
authored
Fix display list check for correct namespace (#38)
``` /Users/jeff/dev/games/dusk/extern/aurora/lib/dolphin/gx/GXDispList.cpp:13:10: error: no member named 'fifo' in namespace 'aurora::gfx'; did you mean 'aurora::gx::fifo'? 13 | CHECK(!aurora::gfx::fifo::in_display_list(), "Display list began twice!"); | ^~~~~~~~~~~~~~~~~ | aurora::gx::fifo ``` I assume this is what you meant?
1 parent 856e40e commit 99673bf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/dolphin/gx/GXDispList.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ static __GXData_struct sSavedGXData;
1010

1111
extern "C" {
1212
void GXBeginDisplayList(void* list, u32 size) {
13-
CHECK(!aurora::gfx::fifo::in_display_list(), "Display list began twice!");
13+
CHECK(!aurora::gx::fifo::in_display_list(), "Display list began twice!");
1414

1515
// Flush any pending dirty state before recording
1616
if (__gx->dirtyState != 0) {

0 commit comments

Comments
 (0)