mirror of
https://github.com/cemu-project/Cemu.git
synced 2024-11-22 17:19:18 +01:00
10 lines
214 B
C++
10 lines
214 B
C++
|
#include <stdio.h>
|
||
|
#include "./../src/Common/version.h"
|
||
|
|
||
|
// output current Cemu version for CI workflow. Do not modify
|
||
|
int main()
|
||
|
{
|
||
|
printf("%d.%d", EMULATOR_VERSION_LEAD, EMULATOR_VERSION_MAJOR);
|
||
|
return 0;
|
||
|
}
|