diff --git a/README.md b/README.md index 0bba4be4..768084d9 100644 --- a/README.md +++ b/README.md @@ -1,27 +1,34 @@


- + - -
+
+

- Skyline is an experimental emulator that runs on ARMv8 Android™ devices and emulates the functionality of a Nintendo Switch™ system. It's licensed under GPLv3, refer to the license file for more information.

+ Skyline is an experimental emulator that runs on ARMv8 Android™ devices and emulates the functionality of a Nintendo Switch™ system. It's licensed under the MPL, refer to the license file for more information.

### Contact -> You can contact the core developers of Skyline at our [Discord](https://discord.gg/XnbXNQM). If you have any questions, feel free to ask. +You can contact the core developers of Skyline at our [Discord](https://discord.gg/XnbXNQM). If you have any questions, feel free to ask. It's also a good place to just keep up with the emulator, as most talk regarding development goes on over there. ### Credit -[](https://ryujinx.org/) +[](https://ryujinx.org/) [**Ryujinx**](https://ryujinx.org/)
-We've used Ryujinx throughout the project for reference, the amount of accuracy of their HLE kernel implementation is what makes them such an amazing reference. -
-
+We've used Ryujinx throughout the project for reference, the amount of accuracy of their HLE kernel implementation is what makes them such an amazing reference. In addition, the team behind the project has been really helpful with any queries we had. + +[](https://ryujinx.org/) +[**Team yuzu**](https://github.com/yuzu-emu/)
+We have recieved a fair share of advice from the team behind [yuzu](https://yuzu-emu.org/). Just like the Ryujinx team, they've been really receptive and helpful for any queries we've had and have provided feedback on our code which was extremely useful during the early stages of the emulator. + +[](https://ryujinx.org/) +[**Switchbrew**](https://github.com/switchbrew/)
+We've extensively used Switchbrew whether that be their [wiki](https://switchbrew.org/) with it's collosal amount of information on the Switch that has saved us countless hours of time or [libNX](https://github.com/switchbrew/libnx) which was crucial to initial development of the emulator to ensure that our implementations were correct. + ### Disclaimer * Nintendo Switch is a trademark of Nintendo Co., Ltd. * Android is a trademark of Google LLC. diff --git a/app/src/main/cpp/main.cpp b/app/src/main/cpp/main.cpp index 64d45c81..83131548 100644 --- a/app/src/main/cpp/main.cpp +++ b/app/src/main/cpp/main.cpp @@ -26,6 +26,8 @@ void signalHandler(int signal) { extern "C" JNIEXPORT void Java_emu_skyline_EmulationActivity_executeApplication(JNIEnv *env, jobject instance, jstring romUriJstring, jint romType, jint romFd, jint preferenceFd, jint logFd) { Halt = false; FaultCount = 0; + fps = 0; + frametime = 0; std::signal(SIGTERM, signalHandler); std::signal(SIGSEGV, signalHandler);