jak-project/game/sce/libscf.cpp
water111 845802ca45
memory cards (in progress) (#868)
* c++ memory card stuff

* saving kinda works

* load working

* more progress

* clean up
2021-10-01 23:12:34 -04:00

22 lines
396 B
C++

#include "libscf.h"
namespace ee {
int sceScfGetAspect() {
return SCE_ASPECT_43;
}
int sceScfGetLanguage() {
return SCE_ENGLISH_LANGUAGE;
}
void sceCdReadClock(sceCdCLOCK* result) {
result->stat = 0; // ??
result->second = 1;
result->minute = 0x92;
result->hour = 0x76;
result->week = 13;
result->day = 0x99;
result->month = 0x16;
result->year = 0x19;
}
} // namespace ee