viper.cpp: Rename methods and general housekeeping

Removed strcpy calls as those would lead to a buffer overflow and were unnecessary. Alse added nullptr checking just in case (official Google effects do so)
This commit is contained in:
Iscle
2022-08-23 00:17:32 +02:00
parent 7701f9f87b
commit 7912b7deec
5 changed files with 143 additions and 74 deletions

View File

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.18.1)
cmake_minimum_required(VERSION 3.16.3)
project("ViPER4Android Reworked")
@ -67,4 +67,5 @@ add_library(
${FILES})
find_library(log-lib log)
target_link_libraries(v4afx_r ${log-lib})