Package Details: corsix-th 0.69.1-1

Git Clone URL: https://aur.archlinux.org/corsix-th.git (read-only, click to copy)
Package Base: corsix-th
Description: Reimplementation of the game engine of Theme Hospital
Upstream URL: https://corsixth.com/
Keywords: corsixth game game-engine simulation theme-hospital
Licenses: MIT
Submitter: vesath
Maintainer: envolution
Last Packager: envolution
Votes: 76
Popularity: 0.039302
First Submitted: 2010-06-07 15:48 (UTC)
Last Updated: 2025-08-16 00:52 (UTC)

Latest Comments

1 2 3 4 5 6 .. 8 Next › Last »

colinjmatt commented on 2026-06-25 22:27 (UTC)

Just checking if this package is still intended to be maintained or not? I'm an existing packager for the CTH project and wouldn't mind taking this over if not.

XploitOcelot commented on 2024-11-23 12:03 (UTC)

Hi! It's been already one month and 10 days since version 0.68 released. Is there any intention on updating the package by the current maintainer (randomnobody)?

antena commented on 2023-06-19 12:58 (UTC) (edited on 2023-06-19 12:58 (UTC) by antena)

Since recently I am unable to build this due to "Error prone negation: negation is executed before relational operator" on line 313 in CorisxTH/Lua/world.lua during Lua check phase.

Here's the patch I made to fix the issue, hope it helps someone!

--- world.lua.orig      2023-06-19 14:45:48.891587391 +0200
+++ world.lua.mod       2023-06-19 14:46:18.244980721 +0200
@@ -310,7 +310,7 @@
       end
     end
   end
-  if #self.available_diseases == 0 and not self.map.level_number == "MAP EDITOR" then
+  if #self.available_diseases == 0 and self.map.level_number ~= "MAP EDITOR" then
     -- No diseases are needed if we're actually in the map editor!
     print("Warning: This level does not contain any diseases")
   end

SebinNyshkim commented on 2022-03-01 17:52 (UTC)

@TheCycoONE I had a hunch it might be connected to the recent major release of FFmpeg, but wasn't certain. I also had the ffmpeg4.4 package installed but it would still error out.

This package still breaks upon build, as it is still pulling in 0.64 but I also just tested it with the corsix-th-git package and it compiled like a charm! Thanks for the quick fix :D

TheCycoONE commented on 2022-03-01 16:04 (UTC)

https://github.com/CorsixTH/CorsixTH/commit/95be4c96810818d05b668c373711cd8f38d4e8b4

The patch is now upstream ^

TheCycoONE commented on 2022-03-01 03:03 (UTC)

I see ffmpeg 5.0 was just released with API breaking changes. ArchLinux is carrying an ffmpeg 4.4 package (https://archlinux.org/packages/extra/x86_64/ffmpeg4.4/) which probably works better until we can incorporate the required changes.

TheCycoONE commented on 2022-03-01 00:15 (UTC) (edited on 2022-03-01 00:16 (UTC) by TheCycoONE)

@SebinNyshkim I haven't seen that yet, but if this is a problem with the latest ffmpeg I'll have it patched soon in git.

In the mean time you should be able to add -DWITH_MOVIES=off to the cmake line to get it to build - without cinematics of course.