Moemod Hymei⭐

Results 13 issues of Moemod Hymei⭐

Related: MoeMod/CSMoE#64 switchports/xash3d-switch#11 1. make a export function table 2. avoid duplicated symbols Switchports uses marcos and I wrap all codes into namespaces to avoid duplicated symbols between client and...

``` void Host_Frame( float time ) { #ifndef NO_SJLJ if( setjmp( host.abortframe )) return; #endif Host_Autosleep(); // decide the simulation time if( !Host_FilterTime( time )) return; rand (); // keep...

Nowadays Windows Tablets become popular, such as Surface lineup. However most of them are packaged with Windows 10 S where win32 app is not recommended, so UWP apps are preferred....

MSVC doesn't support VLA and #pragma mark. Winsdk headers includes #define min/max, which generates lots of errors. Hope for some workround.

ZBOTs enjoy learning the new maps and will learn again and again if we don't provide with .nav file.

bug

https://github.com/FWGS/xash3d-fwgs/blob/ddc4d7666874ce050d33ba6cc5781f08180776c5/engine/common/mod_studio.c#L1093-L1096 Every model file loaded into memory with read+malloc+memcpy can be replaced with mmap, which helps to reduce physical memory usage for huge mods.

jumping to enum(s) like Ham_Think doesn't work, which makes more difficult to refer to those constants. Please support that.