Merge pull request #9038 from heitbaum/add

libretro-bk: update to githash ea37046
This commit is contained in:
Christian Hewitt 2024-06-29 09:40:10 +04:00 committed by GitHub
commit 88d076263a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 24 deletions

View File

@ -2,8 +2,8 @@
# Copyright (C) 2023-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="libretro-bk"
PKG_VERSION="cf70ce503ddb65051a58f3c4f61d1e258fc4c84b"
PKG_SHA256="ce80a3a9f88a15a53e7cc420708a2eaa6b3136b01e4ac4d91d84eb2409f0ab69"
PKG_VERSION="ea37046ca174e39c63b7db5679b9c91387a75ea5"
PKG_SHA256="87ea97a4d60e62836deb13af85adfd37dbe2fa4c5c2c1daaef98943e329396f2"
PKG_LICENSE="NTP"
PKG_SITE="https://github.com/libretro/bk-emulator"
PKG_URL="https://github.com/libretro/bk-emulator/archive/${PKG_VERSION}.tar.gz"

View File

@ -1,22 +0,0 @@
From f686a53014a7670344540090e3da4f7be2301a4e Mon Sep 17 00:00:00 2001
From: Rudi Heitbaum <rudi@heitbaum.com>
Date: Sun, 19 May 2024 15:42:29 +1000
Subject: [PATCH] Recast to target type
---
libretro.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libretro.c b/libretro.c
index db5ad34..6ec89de 100644
--- a/libretro.c
+++ b/libretro.c
@@ -668,7 +668,7 @@ void platform_disk_init(disk_t *disks) {
if (disk_size[i]) {
disks[i].length = disk_size[i];
disks[i].ro = 0;
- disks[i].image = diskptr;
+ disks[i].image = (short unsigned int *)diskptr;
} else {
disks[i].length = 0;
disks[i].ro = 0;