Skip to content

Commit

Permalink
downloader: remove update type
Browse files Browse the repository at this point in the history
  • Loading branch information
blastrock committed Nov 7, 2018
1 parent 05bd000 commit ea57eec
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.39

Bug fixes:

- Fixed installation of DLCs and PSX games

## 0.38

What's new:
Expand Down
5 changes: 0 additions & 5 deletions src/downloader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ std::string type_to_string(Type type)
{
case Type::Game:
return "game";
case Type::Update:
return "update";
case Type::Dlc:
return "DLC";
case Type::PsmGame:
Expand Down Expand Up @@ -167,9 +165,6 @@ void Downloader::do_download_package(const DownloadItem& item)
case Dlc:
pkgi_install(item.content.c_str());
break;
case Update:
pkgi_install_update(item.content.c_str());
break;
case PspGame:
if (item.save_as_iso)
pkgi_install_pspgame_as_iso(
Expand Down
1 change: 0 additions & 1 deletion src/downloader.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
enum Type
{
Game,
Update,
Dlc,
PsmGame,
PsxGame,
Expand Down

0 comments on commit ea57eec

Please sign in to comment.