MCPcopy Create free account
hub / github.com/TASEmulators/fceux / cdl_loadcdlog

Function cdl_loadcdlog

src/lua-engine.cpp:5363–5372  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5361// CDLog functions library
5362
5363static int cdl_loadcdlog(lua_State *L)
5364{
5365#ifdef __WIN_DRIVER__
5366 const char *nameo = luaL_checkstring(L, 1);
5367 lua_pushinteger(L, LoadCDLog(nameo));
5368#else
5369 lua_pushinteger(L, 0);
5370#endif
5371 return 1;
5372}
5373
5374static int cdl_loadfile(lua_State *L)
5375{

Callers

nothing calls this directly

Calls 2

lua_pushintegerFunction · 0.85
LoadCDLogFunction · 0.50

Tested by

no test coverage detected