mirror of
https://github.com/libretro/RetroArch
synced 2025-03-14 10:21:46 +00:00
* Prepare to update deps/switchres * Squashed 'deps/switchres/' content from commit ca72648b32 git-subtree-dir: deps/switchres git-subtree-split: ca72648b3253eca8c5addf64d1e4aa1c43f5db94 * Add CRT modeswitching to KMS Display the real refresh rate Enable the CRT SwitchRes menu Add another switchres.ini path for Lakka
8 lines
172 B
C++
8 lines
172 B
C++
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <switchres/switchres_wrapper.h>
|
|
|
|
int main(int argc, char** argv) {
|
|
printf("Switchres version: %s\n" , sr_get_version());
|
|
}
|