mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2024-11-15 08:41:59 +00:00
- Fixed zipdir for Windows.
SVN r1090 (trunk)
This commit is contained in:
parent
a65f5c67a3
commit
2f7b7673f8
2 changed files with 83 additions and 84 deletions
|
@ -1,5 +1,5 @@
|
||||||
July 23, 2008 (Changes by Graf Zahl)
|
July 23, 2008 (Changes by Graf Zahl)
|
||||||
- Fixed: Thew sounds of Strife's intro need CHAN_UI.
|
- Fixed: The sounds of Strife's intro need CHAN_UI.
|
||||||
- Changed all instances of playing the chat sounds to use CHAN_UI.
|
- Changed all instances of playing the chat sounds to use CHAN_UI.
|
||||||
|
|
||||||
July 21, 2008
|
July 21, 2008
|
||||||
|
|
|
@ -319,6 +319,7 @@ dir_tree_t *add_dir(const char *dirpath)
|
||||||
dir_tree_t *add_dirs(char **argv)
|
dir_tree_t *add_dirs(char **argv)
|
||||||
{
|
{
|
||||||
dir_tree_t *tree, *trees = NULL;
|
dir_tree_t *tree, *trees = NULL;
|
||||||
|
char *s;
|
||||||
|
|
||||||
while (*argv != NULL)
|
while (*argv != NULL)
|
||||||
{
|
{
|
||||||
|
@ -608,12 +609,10 @@ int append_to_zip(zipFile zipfile, const file_sorted_t *file)
|
||||||
|
|
||||||
int __cdecl main (int argc, char **argv)
|
int __cdecl main (int argc, char **argv)
|
||||||
{
|
{
|
||||||
int i;
|
|
||||||
dir_tree_t *tree, *trees;
|
dir_tree_t *tree, *trees;
|
||||||
file_entry_t *file;
|
file_entry_t *file;
|
||||||
struct stat zipstat;
|
struct stat zipstat;
|
||||||
int needwrite;
|
int needwrite;
|
||||||
char *s;
|
|
||||||
|
|
||||||
if (argc < 3)
|
if (argc < 3)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue