mirror of
https://github.com/coderkei/akmenu-next.git
synced 2025-06-18 17:05:48 -04:00
15 lines
263 B
C
15 lines
263 B
C
/*
|
|
gamecode.h
|
|
Copyright (C) 2009 yellow wood goblin
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
inline u32 gamecode(const char* aGameCode) {
|
|
u32 gameCode;
|
|
memcpy(&gameCode, aGameCode, sizeof(gameCode));
|
|
return gameCode;
|
|
}
|