Rob Loach

Results 408 issues of Rob Loach

This requires `RETRO_ENVIRONMENT_GET_CLIPBOARD_TEXT` and `RETRO_ENVIRONMENT_SET_CLIPBOARD_TEXT`.

This introduces [libretro.h](https://github.com/libretro/RetroArch/blob/master/libretro-common/include/libretro.h) virtual file system support for PhysFS, allowing to use PhysFS directly from a libretro core through `RETRO_ENVIRONMENT_GET_VFS_INTERFACE`. I've put together a [physfs_test_libretro core](https://github.com/RobLoach/physfs_test_libretro) to [test out](https://github.com/RobLoach/physfs_test_libretro/blob/master/physfs_test_libretro.c#L165) the...

Bring in some style options from rgui? https://raylibtech.itch.io/rguistyler

```c #ifdef NK_INCLUDE_DEFAULT_FONT NK_GLOBAL const char nk_proggy_clean_ttf_compressed_data_base85[11980+1]; ``` Use.... ```c int compressed_size; void *compressed_data; struct nk_font *font; NK_ASSERT(atlas); NK_ASSERT(atlas->temporary.alloc); NK_ASSERT(atlas->temporary.free); NK_ASSERT(atlas->permanent.alloc); NK_ASSERT(atlas->permanent.free); NK_ASSERT(data_base85); if (!atlas || !data_base85 || !atlas->temporary.alloc ||...

https://github.com/baylej/tmx

https://github.com/dracula/base16-dracula-scheme This should fix https://github.com/tinted-theming/schemes/issues/20 .

The [Dracula Scheme](https://github.com/tinted-theming/schemes/blob/spec-0.11/base24/dracula.yaml) has colors that are aligned with the super old JetBrains theme. Since then, there's been a launch of [DraculaTheme.com](https://draculatheme.com/contribute) , which has a similar, but different, color...

bug

https://github.com/RobLoach/base16-gtksourceview

This change adds a plugin to load the [asdf version manager](https://github.com/asdf-vm/asdf) through *oh-my-bash*. It's roughly based off of the [original pull request](https://github.com/ohmybash/oh-my-bash/pull/310), moves to the bash syntax, and allows checking...